fix(inspector): use actual query plan generated by table source - #5990
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
| Branch | mlaw/fix-bindings |
| Testbed | Linux |
Click to view all benchmark results
| Benchmark | File Size | Benchmark Result kilobytes (KB) (Result Δ%) | Upper Boundary kilobytes (KB) (Limit %) |
|---|---|---|---|
| zero-package.tgz | 📈 view plot 🚷 view threshold | 2,113.12 KB(+0.04%)Baseline: 2,112.20 KB | 2,154.44 KB (98.08%) |
| zero.js | 📈 view plot 🚷 view threshold | 280.07 KB(0.00%)Baseline: 280.07 KB | 285.67 KB (98.04%) |
| zero.js.br | 📈 view plot 🚷 view threshold | 74.39 KB(0.00%)Baseline: 74.39 KB | 75.88 KB (98.04%) |
|
| Branch | mlaw/fix-bindings |
| Testbed | self-hosted-metal |
🚨 1 Alert
| Benchmark | Measure Units | View | Benchmark Result (Result Δ%) | Lower Boundary (Limit %) |
|---|---|---|---|---|
| src/client/zero.bench.ts > pk compare > pk = N | Throughput operations / second (ops/s) x 1e3 | 📈 plot 🚷 threshold 🚨 alert (🔔) | 18.26 ops/s x 1e3(-7.00%)Baseline: 19.64 ops/s x 1e3 | 18.46 ops/s x 1e3 (101.08%) |
Click to view all benchmark results
| Benchmark | Throughput | Benchmark Result operations / second (ops/s) x 1e3 (Result Δ%) | Lower Boundary operations / second (ops/s) x 1e3 (Limit %) |
|---|---|---|---|
| src/client/custom.bench.ts > big schema | 📈 view plot 🚷 view threshold | 35.50 ops/s x 1e3(+0.75%)Baseline: 35.24 ops/s x 1e3 | 33.34 ops/s x 1e3 (93.93%) |
| src/client/zero.bench.ts > basics > All 1000 rows x 10 columns (numbers) | 📈 view plot 🚷 view threshold | 1.10 ops/s x 1e3(+0.60%)Baseline: 1.09 ops/s x 1e3 | 1.01 ops/s x 1e3 (91.62%) |
| src/client/zero.bench.ts > pk compare > pk = N | 📈 view plot 🚷 view threshold 🚨 view alert (🔔) | 18.26 ops/s x 1e3(-7.00%)Baseline: 19.64 ops/s x 1e3 | 18.46 ops/s x 1e3 (101.08%) |
| src/client/zero.bench.ts > with filter > Lower rows 500 x 10 columns (numbers) | 📈 view plot 🚷 view threshold | 1.51 ops/s x 1e3(+0.89%)Baseline: 1.50 ops/s x 1e3 | 1.24 ops/s x 1e3 (82.23%) |
|
| Branch | mlaw/fix-bindings |
| Testbed | self-hosted-metal |
Click to view all benchmark results
| Benchmark | Throughput | Benchmark Result operations / second (ops/s) (Result Δ%) | Lower Boundary operations / second (ops/s) (Limit %) |
|---|---|---|---|
| src/db/pg-copy.bench.ts > pg-copy benchmark > copy | 📈 view plot 🚷 view threshold | 18.04 ops/s(+0.28%)Baseline: 17.99 ops/s | 17.62 ops/s (97.67%) |
|
| Branch | mlaw/fix-bindings |
| Testbed | self-hosted-metal |
🐰 View full continuous benchmarking report in Bencher
⚠️ WARNING: Truncated view!The full continuous benchmarking report exceeds the maximum length allowed on this platform.
tantaman
enabled auto-merge
May 15, 2026 16:26
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Use the plan from the query that was prepared by table source itself rather than re-preparing. This will prevent future divergences if table-source ends up inlining parameters to get better plans. E.g.,
LIKE ?vsLIKE '%inlined'produce different plans. The former being a worse plan than the latter.Additionally, stop injecting the random
sdfvalue which created divergent plans than what were actually used.